home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / viewkit / builderExamples / stopwatch / Face.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  1.0 KB  |  50 lines

  1. //////////////////////////////////////////////////////////////
  2. //
  3. // Header file for Face
  4. //
  5. //    This file is generated by BuildXcessory. DO NOT MODIFY. 
  6. //    USE SUBCLASSING INSTEAD
  7. //
  8. //    This class is a user interface "component", as described
  9. //    in "Object-Oriented Programming with C++ and OSF/Motif",
  10. //    by Douglas Young, Prentice Hall, 1992. ISBN 0-13-630252-1
  11. //
  12. //    If you directly modify this file, you may lose your 
  13. //    changes if it is  regenerated by the builder again.
  14. //
  15. //////////////////////////////////////////////////////////////
  16. #ifndef FACE_H
  17. #define FACE_H
  18. #include <Vk/VkComponent.h>
  19.  
  20. class Face : public VkComponent
  21.  
  22.   public:
  23.  
  24.     Face(const char *, Widget);
  25.     ~Face();
  26.     const char *  className();
  27.  
  28.   protected: 
  29.  
  30.     // Classes created by this class
  31.  
  32.  
  33.     // Widgets created by this class
  34.  
  35.     Widget  _face;
  36.     Widget  _frame;
  37.     Widget  _label;
  38.     Widget  _text;
  39.  
  40.  
  41.   private: 
  42.  
  43.     // Array of default resources
  44.  
  45.     static String      _defaultFaceResources[];
  46. };
  47. #endif
  48.  
  49.